Actually export gtk_disable_setlocale(). (Caught by Sven Neumann)
authorOwen Taylor <otaylor@redhat.com>
Fri, 19 Oct 2001 15:27:43 +0000 (15:27 +0000)
committerOwen Taylor <otaylor@src.gnome.org>
Fri, 19 Oct 2001 15:27:43 +0000 (15:27 +0000)
Fri Oct 19 11:24:58 2001  Owen Taylor  <otaylor@redhat.com>

* gtk/gtkmain.[ch] (gtk_disable_setlocale): Actually
export gtk_disable_setlocale(). (Caught by Sven Neumann)

ChangeLog
ChangeLog.pre-2-0
ChangeLog.pre-2-10
ChangeLog.pre-2-2
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
gtk/gtkmain.c
gtk/gtkmain.h

index 62cc5d7b325bc518c3040b0f2976d13379378549..3de59774ec1eddee10688b2fedec8f8f48d29b11 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Fri Oct 19 11:24:58 2001  Owen Taylor  <otaylor@redhat.com>
+
+       * gtk/gtkmain.[ch] (gtk_disable_setlocale): Actually
+       export gtk_disable_setlocale(). (Caught by Sven Neumann)
+
 2001-10-18  Havoc Pennington  <hp@redhat.com>
 
        * gdk/x11/gdkpixmap-x11.c (gdk_pixmap_lookup): fix compilation
index 62cc5d7b325bc518c3040b0f2976d13379378549..3de59774ec1eddee10688b2fedec8f8f48d29b11 100644 (file)
@@ -1,3 +1,8 @@
+Fri Oct 19 11:24:58 2001  Owen Taylor  <otaylor@redhat.com>
+
+       * gtk/gtkmain.[ch] (gtk_disable_setlocale): Actually
+       export gtk_disable_setlocale(). (Caught by Sven Neumann)
+
 2001-10-18  Havoc Pennington  <hp@redhat.com>
 
        * gdk/x11/gdkpixmap-x11.c (gdk_pixmap_lookup): fix compilation
index 62cc5d7b325bc518c3040b0f2976d13379378549..3de59774ec1eddee10688b2fedec8f8f48d29b11 100644 (file)
@@ -1,3 +1,8 @@
+Fri Oct 19 11:24:58 2001  Owen Taylor  <otaylor@redhat.com>
+
+       * gtk/gtkmain.[ch] (gtk_disable_setlocale): Actually
+       export gtk_disable_setlocale(). (Caught by Sven Neumann)
+
 2001-10-18  Havoc Pennington  <hp@redhat.com>
 
        * gdk/x11/gdkpixmap-x11.c (gdk_pixmap_lookup): fix compilation
index 62cc5d7b325bc518c3040b0f2976d13379378549..3de59774ec1eddee10688b2fedec8f8f48d29b11 100644 (file)
@@ -1,3 +1,8 @@
+Fri Oct 19 11:24:58 2001  Owen Taylor  <otaylor@redhat.com>
+
+       * gtk/gtkmain.[ch] (gtk_disable_setlocale): Actually
+       export gtk_disable_setlocale(). (Caught by Sven Neumann)
+
 2001-10-18  Havoc Pennington  <hp@redhat.com>
 
        * gdk/x11/gdkpixmap-x11.c (gdk_pixmap_lookup): fix compilation
index 62cc5d7b325bc518c3040b0f2976d13379378549..3de59774ec1eddee10688b2fedec8f8f48d29b11 100644 (file)
@@ -1,3 +1,8 @@
+Fri Oct 19 11:24:58 2001  Owen Taylor  <otaylor@redhat.com>
+
+       * gtk/gtkmain.[ch] (gtk_disable_setlocale): Actually
+       export gtk_disable_setlocale(). (Caught by Sven Neumann)
+
 2001-10-18  Havoc Pennington  <hp@redhat.com>
 
        * gdk/x11/gdkpixmap-x11.c (gdk_pixmap_lookup): fix compilation
index 62cc5d7b325bc518c3040b0f2976d13379378549..3de59774ec1eddee10688b2fedec8f8f48d29b11 100644 (file)
@@ -1,3 +1,8 @@
+Fri Oct 19 11:24:58 2001  Owen Taylor  <otaylor@redhat.com>
+
+       * gtk/gtkmain.[ch] (gtk_disable_setlocale): Actually
+       export gtk_disable_setlocale(). (Caught by Sven Neumann)
+
 2001-10-18  Havoc Pennington  <hp@redhat.com>
 
        * gdk/x11/gdkpixmap-x11.c (gdk_pixmap_lookup): fix compilation
index 62cc5d7b325bc518c3040b0f2976d13379378549..3de59774ec1eddee10688b2fedec8f8f48d29b11 100644 (file)
@@ -1,3 +1,8 @@
+Fri Oct 19 11:24:58 2001  Owen Taylor  <otaylor@redhat.com>
+
+       * gtk/gtkmain.[ch] (gtk_disable_setlocale): Actually
+       export gtk_disable_setlocale(). (Caught by Sven Neumann)
+
 2001-10-18  Havoc Pennington  <hp@redhat.com>
 
        * gdk/x11/gdkpixmap-x11.c (gdk_pixmap_lookup): fix compilation
index 887f61477f27966dbecbb79d57c9049517c376d2..378b28705bafb6dc4146c42a48b0be51960b1f80 100644 (file)
@@ -376,7 +376,7 @@ static gboolean do_setlocale = TRUE;
  *
  * Most programs should not need to call this function.
  **/
-static void
+void
 gtk_disable_setlocale (void)
 {
   if (gtk_initialized)
index d379cc2ec8c483260c6beccb9f7662a423c83ffd..a798bd71c3260a9e2d4eb961641794bf89b10bda 100644 (file)
@@ -113,6 +113,8 @@ gchar *get_gtk_win32_directory (gchar *subdir);
 #ifndef GTK_DISABLE_DEPRECATED
 void     gtk_exit                 (gint    error_code);
 #endif /* GTK_DISABLE_DEPRECATED */
+
+void           gtk_disable_setlocale    (void);
 gchar *        gtk_set_locale           (void);
 PangoLanguage *gtk_get_default_language (void);
 gint           gtk_events_pending       (void);